@charset "UTF-8";

/* -----
base.css
------------------------------------------------------- */
body{
	color:#333;
	background-color: #fafad2;
}
#wrap{
	width: 950px;
	margin: 0 auto; 
}
* {margin: 0; padding: 0; box-sizing: border-box;}
li {list-style:none;}
body, td, th {
	text-decoration: none;
	font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
	line-height: 1.5;
}
a:link {text-decoration:none;}
a:visited {text-decoration:none; color: #a23300;}
a:hover {text-decoration:underline;}
a:active {text-decoration:none;}
a:hover img{filter: alpha(opacity=60);-moz-opacity:0.60;opacity:0.60;}
#copyright {
	font-size: 12px;
	color: #fff;
	background-color: #ff9900;
	text-align: center;
	padding: 9px;
}
#head-nav,#breadcrumb,#main_content h2, #main_content h3,#copyright{line-height: 1;}


/* -----
header 
--------------------*/
header{
	color:#5a3105;
	font-weight: bold;
}
header a:link { color: #5a3105;}
header a:visited {text-decoration:none; color: #5a3105;}

#header{
	background: linear-gradient(#ff9900, #f9b600);
	padding: 15px 20px;
}
#afl-logo{
	max-width: 100%;
	height: 40px;
}
#afl-logo img{width: 80%; height: auto;}

#head-nav{
	background-color: #fff3d2;
	padding: 10px 20px;
}

/* navbar_nav */
.navbar_nav li {margin-right: 30px;}
.navbar_nav li:last-child {margin-right: 0;}

.navbar_nav li img,.nav_h2_tit img{
	vertical-align: sub !important;
	margin-right: 5px;
}
#afl-id{color: #fff;}


/* -----
コンテンツ表示 
--------------------*/
#full_content{
	padding: 20px 20px 40px;
	background-color: #fff;
}
#full_content img{
	vertical-align:top;
	max-width: 100%;
}

/* -----
サイドナビ 
--------------------*/
#side-nav{width: 250px;}
.side_nav_content{
	padding: 10px;
	background-color: #fff3d2;
}
.side_nav_box{
	padding: 20px;
	background-color: #fff;
}
.nav_welcome,.nav_name,.nav_h2_tit{text-align: center;}
.nav_welcome,.af_name,.nav_h2_tit{font-weight: bold;}
.af_name,.nav_h2_tit{font-size: 18px;}
.nav_list_group{
	margin-top: 15px;
	font-size: 15px
}
.nav_list_group a:link { color: #3c00ff;}
.nav_list_group a:visited {text-decoration:none; color: #3c00ff;}
.nav_list_group li{
	position: relative;
	padding: 0 0 0 16px;
}
.nav_list_group li::before,.nav_item_link li::before{
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%); 
	border: 5px solid transparent;
	border-left: 8px solid #3c00ff; 
}



/* リンク作成、ガイド */
.side_nav_box:nth-child(2),.side_nav_box:nth-child(3) {margin-top: 10px;}
.nav_h2_tit {
	border-bottom: 1px solid #ffd562;
	padding-bottom: 10px;
}
.nav_list_group li.item_list::before{top: 12%;}
.nav_item_link li::before{
	content: '>';
	color: #3c00ff;
	border-style: none;
}




/* -----
バナー設置 
--------------------*/
.afl_banner_content{margin-top: 30px;}



/* -----
メインコンテンツ 
------------------------------------------------------- */
#main_content{width: 640px;}

/* -----
パンくず
--------------------*/
#breadcrumb{
	font-size: 13px;
	padding-bottom: 10px;
}
#breadcrumb li{display:inline;}
#breadcrumb li::after {
	content: '>';
	padding: 0 10px;
}
#breadcrumb li:last-child::after{display: none;}

/* メインコンテンツ 各ブロック */
.page-header{margin-top: 20px;}
.content_box{margin-top: 30px;}

/* -----
メインコンテンツ 見出し 
--------------------*/
/* メインコンテンツ h2 */
#main_content h2{
	color: #5a3105;
	font-size: 26px;
	border-bottom: 1px solid #fbac00;
	padding-bottom: 10px;
}
/* メインコンテンツ h3 */
#main_content h3{
	color: #5a3105;
	font-size: 22px;
	padding-left: 15px;
	position: relative;
}
#main_content h3::before{
	content: '';
	width: 5px;
	height: 22px;
	display: inline-block;
	background-color: #fbac00;
	position: absolute;
	top: 0;
	left: 0;
}
.ico_quest img{
	width: 15px;
	height: 15px;
	margin-left: 10px;
}

.table_trucking_url_gray {
	background:#cccccc;
}


/* ************************************************************** */
/* flex layout */
/* ************************************************************** */

.flex_layout {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}


/* flex-direction */

.flex_row {
	-webkit-flex-direction: row;
	flex-direction: row;
}

.flex_column {
	-webkit-flex-direction: column;
	flex-direction: column;
}

.flex_row-reverse {
	-webkit-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.flex_column-reverse {
	-webkit-flex-direction: column-reverse;
	flex-direction: column-reverse;
}


/* flex-wrap */

.flex_nowrap {
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}

.flex_wrap {
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.flex_wrap-reverse {
	-webkit-flex-wrap: wrap-reverse;
	-ms-flex-wrap: wrap-reverse;
	flex-wrap: wrap-reverse;
}


/* justify-content */

.flex_j_start {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
}

.flex_j_end {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}

.flex_j_center {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
}

.flex_j_between {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

.flex_j_around {
	-webkit-justify-content: space-around;
	justify-content: space-around;
}


/* align-items */

.flex_a_start {
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	align-items: flex-start;
}

.flex_a_end {
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	align-items: flex-end;
}

.flex_a_center {
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.flex_a_baseline {
	-webkit-box-align: baseline;
	-webkit-align-items: baseline;
	align-items: baseline;
}

.flex_a_stretch {
	-webkit-box-align: stretch;
	-webkit-align-items: stretch;	
	align-items: stretch;
}


/* align-content */

.flex_c_start {
	-webkit-align-content: flex-start;
	align-content: flex-start;
}

.flex_c_end {
	-webkit-align-content: flex-end;
	align-content: flex-end;
}

.flex_c_center {
	-webkit-align-content: center;
	align-content: center;
}

.flex_c_between {
	-webkit-align-content: space-between;
	align-content: space-between;
}

.flex_c_around {
	-webkit-align-content: space-around;
	align-content: space-around;
}


/* align-self */

.flex_s_start {
	-webkit-align-self: flex-start;
		align-self: flex-start;
}

.flex_s_end {
	-webkit-align-self: flex-end;
	align-self: flex-end;
}

.flex_s_center {
	-webkit-align-self: center;
	align-self: center;
}

.flex_s_baseline {
	-webkit-align-self: baseline;
	align-self: baseline;
}

.flex_s_stretch {
	-webkit-align-self: stretch;
	align-self: stretch;
}

/* -----
text装飾
--------------------*/
.red {color: #ff0000;}
.blue {color: #0000ff;}
.green{color: #15960c;}
.text_u_line {text-decoration: underline;}
.fw-b {font-weight: bold;}
.fw-n {font-weight: normal;}

/* -----
page_top
--------------------*/
#page_top{
  width: 50px;
  height: 50px;
  position: fixed;
  right: 10px;
  bottom: 10px;
  background: #38A700;
}
#page_top a{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a:hover{opacity: .7;}
#page_top a::before{
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	width: 0;
	height: 0;
	border-left: 15px solid transparent;
	border-right: 15px solid transparent;
	border-bottom: 25px solid #fff;
}





/* -----
indexのメインコンテンツ
--------------------*/
/* メイン設置バナー */
.bn_header{margin-bottom: 30px;}





/* -----
NLSから重要なご連絡
--------------------*/
.top_h2_tit img{margin-right: 10px;}

.content_caution{
	border: solid 1px #8e0f0f;
    background-color: #F6C8C8;
}
.content_caution h2{
    color: #8e0f0f !important;
    padding: 10px;
    border-bottom: none !important;
}
.caution_small{font-size:18px;}
.caution_box{
	margin: 0 10px 10px;
	padding: 20px;
	background-color: #fff;
}

.caution_border{
    border: 1px dotted #de0000;
    background: #fff6f6;
    padding: 10px 10px;
    text-align: center;
    margin-top: 20px;
}
.caution_border p{font-size: 14px;}
.caution_border input {
    margin-top: 20px;
    font-size: 14px;
}
.check_txt {margin-left: 5px;}
.caution_border .application{
    width: 30%;
    padding: 5px;
}
.caution_border .application_2{
    padding: 5px;
}



/* -----
お支払い金額
--------------------*/
.content_top_box{margin: 0 auto 30px;}





/* -----
成果情報表
--------------------*/
#resultinfo{margin-top: 0;}
.content_af_top{margin-top: 50px;}

.table_rate_info{
	width: 100%;
	margin-top: 30px;
	text-align: center;
	color: #685D51;
}
.table_rate_info, .table_rate_info th, .table_rate_info td {
    border: 1px solid #ffd562;
    border-collapse: collapse;
    padding: 7px;
}
.table_rate_info th {
	width: calc(100% / 4);
	background-color: #FFEEB6;
	font-weight: normal;
}
.table_rate_info td:not(:first-child){background-color: #F9F7F2;}


.no_color{background-color: #fff !important;}
.on_color{background-color: #FFEEB6;}

/* 現在までの獲得金額 */
.table_current{margin-top: 10px;}
.table_amount td{width: calc(100% / 2);}

.content_txt{margin-top: 20px;}

/* レポートを見るbtn 登録内容を変更するbtn */
.btn_report,.btn_infochange,.add_btn {
    width: 350px;
    height: 48px;
    margin: 30px auto 0;
    padding: 15px;
    text-align: center;
    display: block;
    color: #fff;
    background-color: #38a700;
    font-size: 18px;
    line-height: 1;
    border: none;
    cursor: pointer;
	position: relative;
}
.btn_report:after,.btn_infochange:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    border: 7px solid transparent;
    border-left: 10px solid #fff;
}
.btn_report a,.btn_infochange a,.add_btn:hover {color: #fff;}
.btn_report a:hover,.btn_infochange a:hover,.add_btn:hover {text-decoration: none;}
.btn_report:hover,.btn_infochange:hover,.add_btn:hover {opacity: .7;}





/* -----
NLSアフィリエイトからのお知らせ
--------------------*/
.news_content{
    margin-top: 30px;
    padding: 30px;
    font-size: 14px;
    border: solid 1px #ffd562;
    overflow-y: auto;
    max-height: 300px;
}
.news_content::-webkit-scrollbar{width: 10px;}
.news_content::-webkit-scrollbar-track {
    background: #eee;
    border-radius: 5px;
}
.news_content::-webkit-scrollbar-thumb {
    background: #aaa;
    border-radius: 5px;
}
.news_tit{font-weight: bold;}
.news_tit span{
	font-weight: normal;
	margin-left: 15px;
}
.news_content dd{margin-top: 20px;}





/* -----
アフィリエイト 注目商品リンク
--------------------*/
.af_pick_box{margin-top: 50px;}
.pick_box{margin-top: 30px;}
.item_pick_box{margin-top: 20px;}
.item_pick_box .rate_chip {
    text-align: right !important;
    margin-top: 0 !important;
}

/* NLSが売り出したいもの */
.af_pick_box .pick_box:nth-of-type(2){margin-top: 50px;}
.item_pick_box li:nth-child(n+5){margin-top: 20px;}




/* -----
NLSアフィリエイトレポート
--------------------*/
.table_search{
	width: 100%;
	margin-top: 30px;
	color: #685D51;
}
.table_search,.table_search td {
    border: 1px solid #ffd562;
    border-collapse: collapse;
    padding: 10px 15px;
}
.table_search td {
	width: calc(100% / 2);
	font-weight: normal;
}
.note{
    color: #8e0f0f;
    margin-top: 10px;
}

/* 計測期間 */
.content_period{
    border: 1px solid #ffd562;
	margin-top: 30px;
    padding: 15px;
}
.period_box{
	width: 100%;
}
.period_box:nth-child(2){padding: 10px 0;}
.search_content{width: 55%;}
.search_content:nth-child(2) .specify{margin-top: 10px;}

.search_content .accordion_label{
	text-align: left;
	font-size: 14px;
	padding: 10px;
}
/*
.period_box div:nth-child(2){width: 50%;}
*/

.search_content .accordion_label::before{right: 10px;}
.specify_year .accordion{width: 125px;}
.specify_month .accordion,.specify_day .accordion{width: 55px !important;}
.specify_year::after,.specify_month::after,.specify_day::after{
    margin-left: 5px;
    font-size: 14px;
}
.specify_year::after{content: "年";}
.specify_month::after{content: "月";}
.specify_day::after{content: "日";}
.specify_txt{font-size: 14px;}

.search_content li {
    font-size: 14px;
}




/* ステータス */
.table_status td{
	width: calc(100% / 6);
    padding: 10px;
    background-color: #fff;
}


/* レポートを表示 */
.content_report{margin-top: 50px;}
.content_report label{position: relative;}
.content_report label:after{
    content: "";
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    position: absolute;
    top: calc( 50% - 3px );
    right: 20px;
    transform: rotate(135deg);
}





/* 並び替え */
.search_hit_box .select_pulldown {
    font-size: 14px;
    padding: 10px;
}
.search_hit_box li {
    padding: 5px 0;
    font-size: 14px;
}
.search_hit_box .hit_number_box,.search_hit_box .tracking_content,.search_hit_box .search_hit_list{width: 49%;}
.search_hit_list{margin-top: 15px;}
.search_hit_accordion .order_label {
    text-align: left;
    padding-left: 15px;
}
.search_hit_accordion .status_label{text-align: left;}
.search_hit_accordion .accordion_label::before {
    content: "";
    width: 5px;
    height: 5px;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    -webkit-transform: rotate(45deg);
    position: absolute;
    top: calc( 50% - 5px );
    right: 15px;
    transform: rotate(135deg);
}
.search_hit_accordion .status_label::before {right: 10px;}



/* レポート表 */
/* レポート表スクロールバー装飾ここから */
.table_overflow {overflow-x: scroll;}
.table_overflow::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.table_overflow::-webkit-scrollbar-track {
   background: #eee;
  border-radius: 5px;
} 
.table_overflow::-webkit-scrollbar-thumb {
  background: #aaa;
  border-radius: 5px;
}
/* レポート表スクロールバー装飾ここまで */

.table_report{
	width: 950px;
	margin-top: 15px;
}
.table_report,.table_report th,.table_report td {
    border: 1px solid #ffd562;
    border-collapse: collapse;
    padding: 7px;
    font-size: 13px;
}
.table_report th{
	width: calc(100% / 9);
    background-color: #FFEEB6;
    font-weight: normal;
    padding: 5px 0;
}
/* 合計 */
.content_total dl {
	margin-top: 15px;
    width: calc(100% / 3);
    background-color: #fff;
    border: 1px solid #ffd562;
}
.content_total dl:not(:last-child)  {border-right: none; }
.content_total dt,.content_total dd{padding: 5px 10px;}
.content_total dt {
	background-color: #FFEEB6;
	border-bottom: solid 1px #ffd562;
	text-align: center; 
}
.content_total dd{text-align: right;}





/* -----
NLSパートナー会員登録情報
--------------------*/
.partner_box{margin-top: 30px;}
.table_partner {
    width: 100%;
    margin-top: 20px;
    text-align: left;
    color: #685D51;
    font-size: 14px;
}
.table_partner,.table_partner th,.table_partner td {
    border: 1px solid #ffd562;
    border-collapse: collapse;
    padding: 10px;
}
.table_partner th {
    width: 210px;
    background-color: #FFEEB6;
    font-weight: normal;
}





/* サブURL */
 .table_suburl th{
 	width: calc(100% / 3);
 	text-align: center;
}
.btn_urlchange_box{
    width: 50%;
    margin: 15px 0 0 auto;
}
.btn_urlchange{
	width: 100%;
    padding: 3px;
 	text-align: center;
 	border: solid 1px #ccc;
 	background-color: #eee;
    font-size: 14px;
    cursor: pointer;
}
.btn_urlchange:hover{
	background-color: #666;
 	border: solid 1px #666;
    color: #fff;
}

.table_add input[type="text"],.profile_box input[type="text"],.contact_box input[type="text"]  {
  width: 100%;
  border: 1px solid #aaa;
  border-radius: 3px;
  outline: none;
  padding: 10px;
  box-sizing: border-box;
}

/* トラッキングID */
.table_id_state{width: 100%;}
.table_id_state th{
	width: calc(100% / 5);
	text-align: center;
}
.table_id_state th:last-child,.table_id_state td:last-child{width: 100%;}
.table_id_state td.state_rate{text-align: right;}
.change_box .btn_urlchange{margin-top: 5px;}
.change_box .btn_urlchange:first-child{margin-top: 0;}

.list_note{font-size: 14px;}
.list_note li{
	padding-left: 15px;
	position: relative;
}
.list_note li::before,.role_box .note::before{
	content: "※";
	position:absolute;
	top: 0;
	left: 0;
}


/* -----
NLSパートナー会員登録情報の編集
--------------------*/
/* 郵便番号 */
.post_code {
    width: 5%;
    font-size: 20px;
    text-align: center;
}

.profile_post input[type="text"] {width: 30%;}
.profile_post input[type="button"] {
	width: 65%;
    margin-left: 5%;
}

/* 住所 */
.profile_box select#add1 {
  width: 50%;
  border: 1px solid #aaa;
  border-radius: 3px;
  outline: none;
  padding: 10px;
  box-sizing: border-box;
}
.profile_add input{margin-top: 10px;}


/* 銀行名 */
.profile_bank input[type="text"] {width: 70%;}
.profile_bank span {width: 25%;}

/* 支店名 */
.bank_branch select,.bank_account select{
    width: 38%;
    border: 1px solid #aaa;
    border-radius: 3px;
    outline: none;
    padding: 9px;
    box-sizing: border-box;
    margin-left: 2%;
}
.bank_account select{
	margin-left: 0;
	margin-right: 2%;
}



/* -----
成果報酬ルール
--------------------*/
#main_content .role_box h3 {
    margin-top: 30px;
    padding-left: 0;
    color: #333;
    font-size: 18px;
}
#main_content .role_box h3::before {display: none;}

.role_box{
    padding: 0 15px;    
}
.role_box li {
    margin-top: 10px;
    text-align: left;
    padding-left: 15px;
    position: relative;
}
.role_box li::before {
    content: "";
    background-color: #666;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 0;
}
.role_box p,.role_box li {font-size: 14px;}
.role_box .note{
    display: block;
    margin-top: 5px;
    padding-left: 15px;
    position: relative;
}



/* -----
お問い合わせ、規約違反サイトの申告
--------------------*/
.form_contact{margin-top: 30px;}
.form_contact h3{margin-bottom: 20px;}
.form_content textarea{
  width: 100%;
  height: 300px;
  border: 1px solid #aaa;
  border-radius: 3px;
  outline: none;
  padding: 10px;
  box-sizing: border-box;
  }


/* プルダウン */
.accordion {
	position: relative;
	width: 100%;
}

.select_pulldown_list label {
	display: block;
	cursor: pointer;
}
.select_pulldown_list input {
	display: none;
}

.select_pulldown_list {
	position: absolute;
	width: 100% !important;
	z-index: 100;
}

.select_pulldown_list a {
	text-decoration: none;
	color:inherit;
}

.select_pulldown_list li a {
	display: block;
	width: 100%;
}

.pulldown_open {
	display: flex !important;
}

.category_list li:hover{color: #9c9c9c;}

.item_search_notice {
	padding-top: 20px;
	text-align: center;
	color: #dd0000;
}

/* ページャー */
.pager_button {
	line-height: 100%;
}

.pager_button li {
	margin: 20px 10px 0 0;
}

.pager_button a {
	display: block;
	width: 100%;
	height: 100%;
	color: inherit;
	padding: 10px;
}

.pager_button .btn_off {
	display: none;
}

.pager_number_current {
	background-color: #38a700;
	border: solid 1px #38a700;
	color: #fff;
}

.pager_number_other {
	background-color: #fff;
	border: solid 1px #38a700;
	color: #38a700;
}

.pager_arrow {
	color: #38a700;
	border: none;
}

/* キャンセルの注文 */
.report_cancel_order {
	background-color: #cccccc;
}

/* トップページ お支払い */
#paymoney .content_txt {
	font-size: 13px;
}
.paymoney_notice {
	color: #dd0000;
}

.btn_report a, .btn_infochange a {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	padding: 15px;
	width: 100%;
	height: 100%;
}



/* -----
NLSアフィリエイトからのお知らせ news_yymmdd.htmlページ用
--------------------*/
.txt_date {
    text-align: right;
    font-size: 14px;
    border-bottom: solid 1px #eee;
    margin-top: 10px;
    padding: 0 15px 3px;
}
.news_box{padding: 0 15px;}
.news_box ul,.news_box li,.news_box h4,.news_box p,.news_box dl{margin-top: 20px;}
.news_box h4{
    background: #eee;
    padding: 10px;
    font-size: 18px;
}

.news_box .entry_list{counter-reset: number 0;}
.news_box .entry_list li{
    position: relative;
    padding-left: 40px;
    font-weight: bold;
}
.news_box .entry_list li::before{
    counter-increment: number 1;
    content: "（" counter(number) "） ";
    position: absolute;
    left: 0;
}

/* 注意事項 */
.news_box .note_list li{
    position: relative;
    padding-left: 20px;
}
.news_box .note_list li::before{
	content: "※";
	position:absolute;
	top: 0;
	left: 0;
}

/* Q&A */
.news_qa dt,.news_qa dd{
    position: relative;
    padding-left: 30px;
}
.news_qa dt{
    font-weight: bold;
    margin-top: 30px;
}
.news_qa dd{margin-top: 5px;}
.news_qa dt::before, .news_qa dd::before {
    content: "Ｑ";
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0px;
    font-weight: bold;
    color: rgb(255, 102, 0);
}
.news_qa dd::before {
    content: "Ａ";
    color: rgb(0, 102, 255);
}

/* PR等の表示例 */
.news_pr dt{
    position: relative;
    padding-left: 20px;
}
.news_pr dd{padding-left: 20px;}
.news_pr dt::before{
    content: "・";
    position: absolute;
    left: 0;
}
.news_pr dt:nth-child(3){margin-top: 20px;}


/* news_pr_02 */
.news_pr_02{counter-reset: number 0;}
.news_pr_02 dt{
    position: relative;
    padding-left: 20px;
    margin-top: 30px;
}
.news_pr_02 dt:first-child{margin-top: 0;}
.news_pr_02 dt::before{
    content: " ";
    width: 10px;
    height: 10px;
    background: #fbac00; 
    position: absolute;
    top: 7px;
    left: 0;
}
.news_pr_02 dt span{
    position: relative;
    padding-left: 40px;
}
.news_pr_02 dt span::before{
    counter-increment: number 1;
    content: "例" counter(number) "） ";
    position: absolute;
    left: 0;
}


/* 関連リンク */
.news_box .news_link li{
    position: relative;
    padding-left: 20px;
    margin-top: 0;
}
.news_box .news_link li::before{
	content: "・";
	position:absolute;
	top: 0;
	left: 0;
}